home *** CD-ROM | disk | FTP | other *** search
/ Freelog 121 / FreelogMagazineJuilletAout2014-No121.iso / Outils / Adobe-Air / adobe-air_13.exe / [0] / setup.swf / scripts / mx / effects / effectClasses / PropertyChanges.as < prev    next >
Text File  |  2014-03-27  |  527b  |  28 lines

  1. package mx.effects.effectClasses
  2. {
  3.    import mx.core.mx_internal;
  4.    
  5.    use namespace mx_internal;
  6.    
  7.    public class PropertyChanges
  8.    {
  9.       
  10.       mx_internal static const VERSION:String = "3.0.0.0";
  11.        
  12.       
  13.       public var target:Object;
  14.       
  15.       public var start:Object;
  16.       
  17.       public var end:Object;
  18.       
  19.       public function PropertyChanges(param1:Object)
  20.       {
  21.          end = {};
  22.          start = {};
  23.          super();
  24.          this.target = param1;
  25.       }
  26.    }
  27. }
  28.